home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / bit / src / forms / FORMS / INCLUDE / bitmap.h < prev    next >
Text File  |  1994-08-01  |  664b  |  32 lines

  1. /************   Object Class: Bitmap       ************/
  2.  
  3. /***** Class    *****/
  4.  
  5. #define FL_BITMAP        3
  6.  
  7. /***** Types    *****/
  8.  
  9. #define FL_NORMAL_BITMAP    0
  10.  
  11. /***** Defaults *****/
  12.  
  13. #define FL_BITMAP_BOXTYPE    FL_NO_BOX
  14. #define FL_BITMAP_COL1        0
  15. #define FL_BITMAP_COL2        FL_COL1
  16. #define FL_BITMAP_LCOL        FL_LCOL
  17. #define FL_BITMAP_ALIGN        FL_ALIGN_BOTTOM
  18.  
  19. /***** Others   *****/
  20.  
  21. #define FL_BITMAP_MAXSIZE    128*128
  22. #define FL_BITMAP_BW        FL_BOUND_WIDTH
  23.  
  24. /***** Routines *****/
  25.  
  26. FL_OBJECT     *fl_create_bitmap(int, float, float, float, float, char []);
  27. FL_OBJECT     *fl_add_bitmap(int, float, float, float, float, char []);
  28.  
  29. void        fl_set_bitmap(FL_OBJECT *, int, int, char *);
  30.  
  31.  
  32.